home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000419_janl@math.uio.no_Sat Mar 19 01:27:00 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  883b

  1. Received: from pat.uio.no by cs.umb.edu with SMTP id AA05399
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Mon, 21 Mar 1994 22:10:05 -0500
  3. Received: from ulrik.uio.no by pat.uio.no with local-SMTP (PP) 
  4.           id <07169-0@pat.uio.no>; Sat, 19 Mar 1994 00:27:03 +0100
  5. Received: from mnemosyne.uio.no by smaug.uio.no ;
  6.           Sat, 19 Mar 1994 00:27:01 +0100
  7. Message-Id: <9403182327.AAsmaug14880@smaug.uio.no>
  8. To: tex-k@cs.umb.edu
  9. Subject: web2c-6.1/web2c/web2c/web2c.h
  10. Date: Sat, 19 Mar 1994 00:27:00 +0100
  11. From: Nicolai Langfeldt <janl@math.uio.no>
  12.  
  13.  
  14. GCC or maybe libc on linux defines alloca as a macro. Thus build fails
  15. in web2c-6.1/web2c/web2c/web2c.h on the last line. Change the last
  16. line from just
  17.  
  18.   extern void *alloca();
  19.  
  20. to
  21.  
  22.   #ifndef alloca
  23.   extern void *alloca();
  24.   #endif
  25.  
  26. I think that's the most universal/best way to test it. 
  27.  
  28. Nicolai
  29.